/* ============================================
   ROOT COLORS & CSS VARIABLES
   ============================================ */
:root {
    /* Primary Brand Colors */
    --primary-color: #01D6B7;
    --primary-hover: #00BFA0;
    --primary-light: #33E0C7;
    --primary-dark: #019981;

    /* Background Colors */
    --bg-primary: #0A0E27;
    --bg-secondary: #12162E;
    --bg-tertiary: #1A1F3A;
    --bg-card: #151933;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8C0D4;
    --text-muted: #7B8396;

    /* Accent Colors */
    --accent-green: #00FF87;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-orange: #F59E0B;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Border & Shadow */
    --border-color: rgba(1, 214, 183, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(1, 214, 183, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Exo 2', sans-serif;
    --font-display: 'Jura', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Jura';
    src: url('../fonts/Jura-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-hover);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h1,
.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(1, 214, 183, 0.5);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 214, 183, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.card:hover::before {
    opacity: 1;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 214, 183, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Delay classes for staggered animations */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */
.bg-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.bg-decoration.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 214, 183, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.bg-decoration.gradient-orb {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 214, 183, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform var(--transition-base);
    z-index: 10;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--text-primary);
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Age Badge */
.age-badge {
    display: flex;
    align-items: center;
}

.age-icon {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 0 10px rgba(1, 214, 183, 0.3));
}

.age-icon:hover {
    transform: scale(1.1);
}

.age-badge-mobile {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: transform var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.age-badge-footer {
    display: inline-block;
}

.age-icon-small {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(1, 214, 183, 0.2));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.footer-contact .icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Disclaimer Section */
.footer-disclaimer {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.age-icon-disclaimer {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(1, 214, 183, 0.3));
}

.disclaimer-badge h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.disclaimer-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.disclaimer-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 30px;
    position: relative;
}

.disclaimer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-disclaimer h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.disclaimer-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.disclaimer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.disclaimer-contact a:hover {
    color: var(--primary-hover);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-domain {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 214, 183, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ============================================
   18+ AGE MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.age-modal.active {
    opacity: 1;
    visibility: visible;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    box-shadow: 0 0 50px rgba(1, 214, 183, 0.3);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.age-modal.active .age-modal-content {
    transform: scale(1);
}

.age-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.age-modal-icon {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.age-modal-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin: 0;
}

.age-modal-body {
    margin-bottom: 2rem;
}

.age-modal-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.age-modal-subtext {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.age-modal-subtext a {
    color: var(--primary-color);
    text-decoration: underline;
}

.age-modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.age-modal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
}

.check-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.age-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.age-modal-footer .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    flex-shrink: 0;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    min-height: 100vh;
    position: relative;
}

/* ============================================
   PHONE FORM (HOME PAGE)
   ============================================ */
.phone-form-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 600px;
    margin: 3rem auto;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.phone-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 214, 183, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.phone-form-wrapper h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.phone-form-wrapper p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.phone-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.phone-form input[type="tel"] {
    font-size: 1.1rem;
    padding: 16px 20px;
}

.phone-success-message {
    display: none;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.phone-success-message.active {
    display: block;
}

.phone-success-message h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.3rem;
}

.phone-success-message p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--bg-card);
    border: 2px solid var(--success);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInRight 0.5s ease;
}

.success-content {
    text-align: center;
}

.success-content svg {
    color: var(--success);
    margin: 0 auto 1rem;
}

.success-content h3 {
    color: var(--success);
    margin-bottom: 0.5rem;
}

.success-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(1, 214, 183, 0.2) 0%, rgba(0, 255, 135, 0.2) 100%);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-size: 2rem;
    transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SCORING TABLE
   ============================================ */
.scoring-section {
    margin: 3rem 0;
}

.scoring-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.scoring-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scoring-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scoring-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
    transition: all var(--transition-base);
}

.scoring-item:hover {
    transform: translateX(5px);
    background: var(--bg-tertiary);
}

.scoring-item-name {
    color: var(--text-primary);
    font-weight: 500;
}

.scoring-item-points {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.scoring-item-points.positive {
    color: var(--accent-green);
}

.scoring-item-points.negative {
    color: var(--error);
}

/* Example Box */
.example-box {
    background: linear-gradient(135deg, rgba(1, 214, 183, 0.1) 0%, rgba(0, 255, 135, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.example-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.example-calculation {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.calc-line.total {
    background: var(--primary-color);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* ============================================
   STEPS GUIDE (HOW TO PLAY)
   ============================================ */
.steps-container {
    margin: 3rem 0;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.step-content ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.step-content ul li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.step-tip {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-blue);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.step-tip strong {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   TESTIMONIALS / FEEDBACK
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(1, 214, 183, 0.2) 0%, rgba(0, 255, 135, 0.2) 100%);
    border-radius: 50%;
    color: var(--primary-color);
}

.contact-info-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* ============================================
   LEGAL PAGES CONTENT
   ============================================ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
    list-style-position: outside;
}

.legal-content ul li {
    list-style-type: disc;
}

.legal-content ol li {
    list-style-type: decimal;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .card {
        padding: 1.5rem;
    }

    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .age-badge {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right var(--transition-base);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
    }

    .age-badge-mobile {
        display: flex;
        justify-content: center;
        padding: 2rem;
    }

    .age-badge-mobile .age-icon {
        height: 60px;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Age Modal Mobile */
    .age-modal-content {
        padding: 2rem;
    }

    .age-modal-icon {
        height: 60px;
    }

    .age-modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Phone Form Mobile */
    .phone-form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Steps Mobile */
    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Scoring Items Mobile */
    .scoring-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Testimonials Mobile */
    .testimonial-card::before {
        font-size: 4rem;
        top: -5px;
    }

    /* Legal Content Mobile */
    .legal-content {
        font-size: 0.95rem;
    }

    .legal-content h3 {
        font-size: 1.4rem;
    }

    .legal-content h4 {
        font-size: 1.2rem;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON (Optional Enhancement)
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(1, 214, 183, 0.6);
}

/* ============================================
   LOADING ANIMATION (Optional Enhancement)
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.skeleton-loader {
    background: linear-gradient(90deg,
            var(--bg-card) 0%,
            var(--bg-tertiary) 50%,
            var(--bg-card) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* ============================================
   SELECTION COLORS
   ============================================ */
::selection {
    background: var(--primary-color);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--bg-primary);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-secondary);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .site-header,
    .site-footer,
    .age-modal,
    .scroll-to-top,
    .btn,
    .bg-decoration {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .main-content {
        padding-top: 0;
    }
}